home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
DELPHI
/
DELPHCGI.ZIP
/
CGI.ZIP
/
SAMPLES
/
FORM
/
PIZZAD.DPR
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-05
|
174 b
|
13 lines
program Pizzad;
uses
Forms,
Pizzform in 'PIZZFORM.PAS' {MainForm};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.